From: Paolo Borelli Date: Sun, 26 Jun 2011 18:41:21 +0000 (+0200) Subject: Speed up page insertion X-Git-Tag: archive/raspbian/3.24.39-1+rpi1~1^2~65^2~39^2~20977 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=399de111167c198a7d2ccbd459a2db7c6389181e;p=gtk%2B3.0.git Speed up page insertion Make sure to call widget_set_child_visible(false) on all tabs except the current before calling widget_set_parent. --- diff --git a/gtk/gtknotebook.c b/gtk/gtknotebook.c index 7b44f82655..5bf3de5b6b 100644 --- a/gtk/gtknotebook.c +++ b/gtk/gtknotebook.c @@ -4560,6 +4560,10 @@ gtk_notebook_real_insert_page (GtkNotebook *notebook, gtk_notebook_menu_item_create (notebook, g_list_find (priv->children, page)); + /* child visible will be turned on by switch_page below */ + if (priv->cur_page != page) + gtk_widget_set_child_visible (child, FALSE); + gtk_widget_set_parent (child, GTK_WIDGET (notebook)); if (tab_label) gtk_widget_set_parent (tab_label, GTK_WIDGET (notebook)); @@ -4569,10 +4573,6 @@ gtk_notebook_real_insert_page (GtkNotebook *notebook, if (!priv->first_tab) priv->first_tab = priv->children; - /* child visible will be turned on by switch_page below */ - if (priv->cur_page != page) - gtk_widget_set_child_visible (child, FALSE); - if (tab_label) { if (priv->show_tabs && gtk_widget_get_visible (child))